home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / icontext.h < prev    next >
C/C++ Source or Header  |  1997-05-06  |  3KB  |  72 lines

  1. /* Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* icontext.h */
  20. /* Externally visible context state */
  21. /* Requires iref.h */
  22.  
  23. #ifndef icontext_INCLUDED
  24. #  define icontext_INCLUDED
  25.  
  26. #include "imemory.h"
  27. #include "istack.h"
  28.  
  29. /*
  30.  * Define the externally visible state of an interpreter context.
  31.  * If we aren't supporting Display PostScript features, there is only
  32.  * a single context.
  33.  */
  34. typedef struct gs_context_state_s {
  35.     ref_stack dstack, estack, ostack;
  36.     gs_state *pgs;
  37.     gs_dual_memory_t memory;
  38.     ref array_packing;        /* t_boolean */
  39.     ref binary_object_format;    /* t_integer */
  40.     long rand_state;    /* (not in Red Book) */
  41.     long usertime_total;    /* total accumulated usertime, */
  42.                 /* not counting current time if running */
  43.     bool keep_usertime;    /* true if context ever executed usertime */
  44.     /****** View clipping? ******/
  45.     /****** User parameters ******/
  46.     /****** %stdin, %stdout ******/
  47. } gs_context_state_t;
  48. /*
  49.  * Note that in single-context systems, we never allocate a context state
  50.  * on the heap: we only allocate one in a local variable for long enough
  51.  * to initialize it and load the interpreter state from it.  Therefore,
  52.  * we declare the GC type for gs_context_state_t here, but we don't
  53.  * actually create it unless multiple contexts are supported.
  54.  */
  55. #define private_st_context_state()    /* in zcontext.c, not icontext.c */\
  56.   gs_private_st_composite(st_context_state, gs_context_state_t,\
  57.     "gs_context_state_t", context_state_enum_ptrs, context_state_reloc_ptrs)
  58.  
  59. /* Allocate the state of a context. */
  60. int context_state_alloc(P2(gs_context_state_t *, gs_ref_memory_t *));
  61.  
  62. /* Load the state of the interpreter from a context. */
  63. void context_state_load(P1(const gs_context_state_t *));
  64.  
  65. /* Store the state of the interpreter into a context. */
  66. void context_state_store(P1(gs_context_state_t *));
  67.  
  68. /* Free the state of a context. */
  69. void context_state_free(P2(gs_context_state_t *, gs_ref_memory_t *));
  70.  
  71. #endif                    /* icontext_INCLUDED */
  72.